home *** CD-ROM | disk | FTP | other *** search
- #include <string.h>
- #include "global.h"
- #include "patchlev.h"
-
- CONFIG driver_config;
- DRV_LIST driver = {MAGIC, do_get_dftab, do_ETM_exec, &driver_config};
-
- TPL trampoline = {
- TRANSPORT_DRIVER,
- "Scott Bigham (GlueSTiK\277 v" GS_VERSION ")",
- "01.07",
- do_KRmalloc,
- do_KRfree,
- do_KRgetfree,
- do_KRrealloc,
- do_get_err_text,
- do_getvstr,
- do_carrier_detect,
- do_TCP_open,
- do_TCP_close,
- do_TCP_send,
- do_TCP_wait_state,
- do_TCP_ack_wait,
- do_UDP_open,
- do_UDP_close,
- do_UDP_send,
- do_CNkick,
- do_CNbyte_count,
- do_CNget_char,
- do_CNget_NDB,
- do_CNget_block,
- do_housekeep,
- do_resolve,
- do_ser_disable,
- do_ser_enable,
- do_set_flag,
- do_clear_flag,
- do_CNgetinfo
- };
-
- DRV_HDR *do_get_dftab(char *tpl_name)
- {
- /* we only have the one, so this is pretty easy... ;) */
- if (strcmp(tpl_name, trampoline.module) != 0)
- return 0;
- return (DRV_HDR *)&trampoline;
- }
-
- int16 do_ETM_exec(char *tpl_name)
- {
- /* even easier... ;) */
- return 0;
- }
-